body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-image: url( "../IMG/GRADIENT BG.jpg"); /* INSERT BACKGROUND HERE */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* NAVBAR */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30 60px;
  background-color:#f9dede;
}

header nav .logo img {
  height: 60px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

header nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

header nav a.active {
  background-color: #f5eee1;
  border-radius: 20px;
}

header nav a:hover {
  color: #ff69b4;
}
.fashion-title {
  font-family: Georgia, serif;
  font-size: 3.0rem;
  text-align: center;
  color: #e91e63;
  margin: 40px 0 40px;
	margin-bottom: 20px
	
}

.content-container {
  display: flex;
  align-items: flex-start;
  gap: 120px; /* Adjust space between image and text */
  margin-top: 30px;
}

/* Slider Styling */
.slider-container {
  position: relative;
  width: 360px; /* Increased from 300px */
  height: 480px; /* Increased from 400px */
  margin-top: 20px; /* Lower it more if you want */
  margin-left: 250px;  /* Moves image slightly to the right */
}


.slider-container img {
  width: 150%;
  height: 120%;
  border-radius: 30px;
  object-fit: cover; 
	padding-bottom: -140px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: pink;
  border: none;
  font-size: 24px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 10px #f8cce7;
}

.slider-btn.prev {
  left: -60PX;
}

.slider-btn.next {
  right: -60PX;
}

/* Tips Box */
.tips-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
	margin-left: 300px;
}

.tip-box {
  background: #ffeef3;
  padding: 20px 30px;
  border-radius: 15px;
  width: 600px;
  box-shadow: 0 5px 15px rgba(255, 192, 203, 0.4);
  animation: slideIn 1.5s ease both;
  /* REMOVE: margin-left: 400px; */
}

.tip-box h3 {
  color: deeppink;
  margin-bottom: 10px;
}

.tip-box p {
  color: #444;
  font-size: 16px;
}

/* Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
